home *** CD-ROM | disk | FTP | other *** search
- property clicked, movieChoice
-
- on mouseDown me
- set the clicked of me to 1
- puppetSound("mouseDown.aif")
- end
-
- on mouseUp me
- if the clicked of me then
- case the spriteNum of me of
- 40:
- leaveThisMovie()
- 41:
- goBack()
- 42:
- GoOn()
- 43:
- printEvaluation()
- 44:
- notePadButton()
- end case
- end if
- set the clicked of me to 0
- end
-
- on mouseUpOutSide me
- set the clicked of me to 0
- end
-
- on beginSprite me
- set the clicked of me to 0
- end
-
- on getBehaviorDescription
- return "Main button action in an activity, based on channel number." & RETURN & "Works on mouseUp, only if mouseDown occured on this sprite."
- end
-